home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.dom;
-
- import org.w3c.dom.DOMException;
- import org.w3c.dom.Document;
- import org.w3c.dom.NamedNodeMap;
- import org.w3c.dom.Node;
- import org.w3c.dom.NodeList;
-
- public class NodeAdapter {
- public Node appendChild(Node var1) throws DOMException {
- return null;
- }
-
- public Node cloneNode(boolean var1) {
- return null;
- }
-
- public NamedNodeMap getAttributes() {
- return null;
- }
-
- public NodeList getChildNodes() {
- return null;
- }
-
- public Node getFirstChild() {
- return null;
- }
-
- public Node getLastChild() {
- return null;
- }
-
- public Node getNextSibling() {
- return null;
- }
-
- public String getNodeName() {
- return null;
- }
-
- public short getNodeType() {
- return 1;
- }
-
- public String getNodeValue() throws DOMException {
- return null;
- }
-
- public Document getOwnerDocument() {
- return null;
- }
-
- public Node getParentNode() {
- return null;
- }
-
- public Node getPreviousSibling() {
- return null;
- }
-
- public boolean hasChildNodes() {
- return false;
- }
-
- public Node insertBefore(Node var1, Node var2) throws DOMException {
- return null;
- }
-
- public Node removeChild(Node var1) throws DOMException {
- return null;
- }
-
- public Node replaceChild(Node var1, Node var2) throws DOMException {
- return null;
- }
-
- public void setNodeValue(String var1) throws DOMException {
- }
- }
-